projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6e035b5
)
Don't quote t
author
Jeremy Bryant
<jb@jeremybryant.net>
Fri, 8 Mar 2024 23:25:59 +0000
(23:25 +0000)
committer
Justin Burkett
<justin@burkett.cc>
Tue, 12 Mar 2024 20:32:04 +0000
(16:32 -0400)
* which-key.el (which-key--replace-in-repl-list-many):
Don't quote t.
which-key.el
patch
|
blob
|
history
diff --git
a/which-key.el
b/which-key.el
index 4a0b8b8e0455547aee8d2a9984f18cc7c5d2e5ce..a4aec2476d37c5a7ab894c53cd8d7be260c6448f 100644
(file)
--- a/
which-key.el
+++ b/
which-key.el
@@
-1588,7
+1588,7
@@
Within these categories order using `which-key-key-order'."
(let (found)
(dolist (repl repls)
(when (which-key--match-replacement key-binding repl)
- (setq found
'
t)
+ (setq found t)
(setq key-binding (which-key--replace-in-binding key-binding repl))))
(when found `(replaced . ,key-binding))))